Shared naming conventions allow teams to collaborate efficiently.
This rule raises an issue when a method name does not match a provided regular expression.
For example, with the default provided regular expression ^([A-Z0-9_]*|[a-z0-9_]*)$
, the method:
METHOD MyMethod "Noncompliant
...
ENDMETHOD.
should be renamed to
METHOD MY_METHOD
...
ENDMETHOD.